Expand description
§Typesize
A library to fetch an accurate estimate of the total memory usage of a value.
The goal of this library is to produce the most accurate estimate possible, however without being deeply
integrated into the entire ecosystem this cannot be possible. This leads to the real goal being to get
“close enough” for getting a sense of memory usage in your program. If one of the TypeSize
implementations built-in could be improved, a PR would be greatly appreciated.
An example usage of this library would be to wrap all the types you want to measure recursively in
the derive::TypeSize
derive macro, and for any types which perform their own heap allocation
to manually implement TypeSize
while overriding the TypeSize::extra_size
method.
§MSRV
The Minimum Supported Rust Version is of this crate is 1.65, and it is considered breaking to raise this.
This is without any library support features, as those libraries may require a higher MSRV.
§Features
std
: ImplementsTypeSize
forHashMap
andHashSet
, default enabled.details
: AddsTypeSize::get_size_details
andTypeSize::get_collection_item_count
to get field by field breakdowns of struct types.
§Library Support
dashmap
: ImplementsTypeSize
forDashMap
(Only5.x
, use thetypesize
feature of dashmap for6.1
+).arrayvec
: ImplementsTypeSize
forArrayVec
andArrayString
of any size.simd_json
: ImplementsTypeSize
forOwnedValue
andStaticNode
, enables halfbrown.halfbrown
: ImplementsTypeSize
forSizedHashMap
, enables hashbrown.extract_map_01
: ImplementsTypeSize
forextract_map::ExtractMap
.parking_lot
: ImplementsTypeSize
forparking_lot::Mutex
andparking_lot::RwLock
.serde_json
: ImplementsTypeSize
forserde_json::Value
andserde_json::Map
.mini_moka
: ImplementsTypeSize
formini_moka::unsync::Cache
, andmini_moka::sync::Cache
ifdashmap
is enabled.hashbrown
: ImplementsTypeSize
forhashbrown::HashMap
.secrecy
: ImplementsTypeSize
forSecret
.chrono
: ImplementsTypeSize
forchrono::DateTime
of anychrono::TimeZone
.nonmax
: ImplementsTypeSize
for allnonmax
types.time
: ImplementsTypeSize
for [time::OffsetDateTime
].url
: ImplementsTypeSize
forurl::Url
.bitvec
: ImplementsTypeSize
forbitvec::array::BitArray
andbitvec::vec::BitVec
.web-time
: ImplementsTypeSize
forweb_time::Instant
andweb_time::SystemTime
(on platforms where these aren’t type aliases tostd::time
types).
Re-exports§
Modules§
- Wrappers around pointer/reference types to correctly implement
TypeSize
.
Macros§
- Passes through the given tokens if the
details
feature oftypesize
is enabled. - Implements
TypeSize
for multiple types based on the return value ofcore::mem::size_of
.
Structs§
- A description of a struct or enum field.
Traits§
- A trait to fetch an accurate estimate of the total memory usage of a value.